home *** CD-ROM | disk | FTP | other *** search
/ Clickx 115 / Clickx 115.iso / software / tools / windows / tails-i386-0.16.iso / live / filesystem.squashfs / var / lib / dpkg / info / resolvconf.prerm < prev    next >
Encoding:
Text File  |  2010-07-12  |  299 b   |  20 lines

  1. #!/bin/sh
  2. set -e
  3.  
  4. case "$1" in
  5.   remove)
  6.     if [ -x "/etc/init.d/resolvconf" ] ; then
  7.         if which invoke-rc.d >/dev/null 2>&1 ; then
  8.             invoke-rc.d resolvconf disable-updates || :
  9.         else
  10.             /etc/init.d/resolvconf disable-updates
  11.         fi
  12.     fi                            
  13.     ;;
  14. # *)
  15.     # deconfigure, upgrade, failed-upgrade
  16. esac
  17.  
  18.  
  19.  
  20.